home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #3 / Amiga Plus CD - 2002 - No. 03.iso / AmiSoft / Dev / C / Tinygl.lha / TinyGL / Makefile < prev    next >
Makefile  |  2001-01-07  |  351b  |  16 lines

  1. include config.mk
  2.  
  3. all:
  4.     ( for f in $(DIRS); do ( cd $$f ; make all ) || exit 1 ; done )
  5.  
  6. clean:
  7.     rm -f *~ lib/libTinyGL.a include/GL/*~ TAGS
  8.     ( for f in $(DIRS); do ( cd $$f ; make clean ; ) done )
  9.  
  10. install:
  11.     ( for f in $(DIRS); do ( cd $$f ; make install ; ) done )
  12.  
  13.  
  14. tar:
  15.     ( cd .. ; tar zcvf TinyGL-0.4.tar.gz TinyGL --exclude CVS --exclude TAGS )
  16.